afterRptSectionRowAdd

IN THIS PAGE

Description

Fires after the user adds a new row to a Repeating Section. Rows can be added to a repeating section when the user clicks the '+', or add, button at the bottom of the repeating section. This button is added by default when the repeating section is created.

Parameters

sectionName

Example

You can use this event to add code that will force an ajax callback when the add button is pushed. This can be used to force the server to populate new rows with data that is generated from an expression. For more on this see the link at the bottom of the page.

var r = {dialog.Object}.getRepeatingSectionActiveRow(e.sectionName);
var data = 'rowNum=' + r;
{dialog.object}.ajaxCallback('','','xb','',data)

See Also